home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Mac Game Programming Gurus / TricksOfTheMacGameProgrammingGurus.iso / More Source / C⁄C++ / Xconq 7.0d37 / lib / simple.g < prev    next >
Text File  |  1995-05-04  |  287b  |  14 lines

  1. (game-module "simple"
  2.   (blurb "trivial game")
  3.   )
  4.  
  5. ;;; This game definition is about as simple as you
  6. ;;; can get and still have a working game.
  7.  
  8. (terrain-type plains (color "green") (char "+"))
  9.  
  10. (unit-type human (image-name "person") (char "@")
  11.   (start-with 1)
  12.   (acp-per-turn 4)
  13.   )
  14.